7

我正在尝试在 Gradle 构建后 FTP 签名的 APK。我已经添加了将签署 APK 的新构建配置,但我一直在试图弄清楚如何调用 FTP 任务。

我在第 59.6 节找到了一个官方的示例,但是它抱怨它无法解决依赖关系 org.apache.ant:ant-commons-net:1.8.4。所以显然我在这里遗漏了一些明显的东西,比如在哪里放置给定的 jar 文件或引用它,尽管我认为 maven 会处理这种事情?

作为参考,以下是链接示例,该示例失败并显示有关依赖项的消息:

configurations {
    ftpAntTask
}

dependencies {
    ftpAntTask("org.apache.ant:ant-commons-net:1.8.4") {
        module("commons-net:commons-net:1.4.1") {
            dependencies "oro:oro:2.0.8:jar"
        }
    }
}

task ftp << {
    ant {
        taskdef(name: 'ftp',
                classname: 'org.apache.tools.ant.taskdefs.optional.net.FTP',
                classpath: configurations.ftpAntTask.asPath)
        ftp(server: "ftp.apache.org", userid: "anonymous", password: "me@myorg.com") {
            fileset(dir: "htdocs/manual")
        }
    }
}

这失败并显示以下消息:

> Could not find org.apache.ant:ant-commons-net:1.8.4.

这是我完整的 gradle.build 文件,删除了一些敏感信息:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.4'
    }
}

apply plugin: 'android'

dependencies {
    compile files('libs/android-support-v4.jar')
}

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 17
    }

    signingConfigs {
        signed {
            storeFile file("(removed)")
            storePassword "(removed)"
            keyAlias "(removed)"
            keyPassword "(removed)"
        }
     }

    buildTypes {
        signed {
            debuggable false
            jniDebugBuild false
            signingConfig signingConfigs.signed
        }
    }
}

configurations {
    ftpAntTask
}

dependencies {
    ftpAntTask("org.apache.ant:ant-commons-net:1.8.4") {
        module("commons-net:commons-net:1.4.1") {
            dependencies "oro:oro:2.0.8:jar"
        }
    }
}

task ftp << {
    ant {
        taskdef(name: 'ftp',
                classname: 'org.apache.tools.ant.taskdefs.optional.net.FTP',
                classpath: configurations.ftpAntTask.asPath)
        ftp(server: "(removed)", userid: "(removed)", password: "(removed)", remoteDir: "(removed)") {
            fileset(dir: "(removed)") {
                include(name: "(removed)")
            }
        }
    }
}
4

2 回答 2

2

您尚未声明可用于解析已声明工件的存储库。尝试将以下代码段添加到您的 build.gradle 文件中:

repositories{
    mavenCentral()
}

干杯,

勒内

于 2013-06-19T21:45:43.287 回答
0

您还可以使用支持 FTP 的本机 ant get 任务,无需外部依赖即可工作:

  ant {
    get(src: "ftp://<hostname>/remote/path/to/file.jar", dest: "/local/path/to/file", username: 'anonymous', password: 'anonymous')
  }
于 2017-08-10T14:56:10.717 回答